'Declaration
Public Overloads Shared Sub VerboseDetail( _ ByVal detailsXml As String, _ ByVal category As String, _ ByVal caption As String, _ ByVal description As String, _ ByVal ParamArray args() As Object _ )
public static void VerboseDetail( string detailsXml, string category, string caption, string description, params object[] args )
Parameters
- detailsXml
- An XML document (as a string) with extended details about the message.
- category
- The application subsystem or logging category that the log message is associated with, which supports a dot-delimited hierarchy (e.g. the logger name in log4net).
- caption
- A simple single-line message caption. (Will not be processed for formatting.)
- description
- Additional multi-line descriptive message (or may be null) which can be a format string followed by corresponding args.
- args
- A variable number of arguments referenced by the formatted description string (or no arguments to skip formatting).